home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / DistributedEO / DEOServer.tproj / DEOServer.h < prev    next >
Encoding:
Text File  |  1995-02-17  |  640 b   |  22 lines

  1. /*
  2.    DEOServer.h created by enoyau on Fri 13-Jan-1995
  3.  
  4.    You may freely copy, distribute, and reuse the code in this example.
  5.    NeXT disclaims any warranty of any kind, expressed or implied, as to its
  6.    fitness for any particular use.
  7. */
  8. // The client(s) register(s) with the server by specifying a key. When the
  9. // server receives a dispatch message from the client, it forwards the
  10. // dispatch message to all clients whose keys match to the key in the message.
  11.  
  12. #import "DEOProtocols.h"
  13. #import <foundation/NSDictionary.h>
  14.  
  15. @interface DEOServer : NSObject <DEOServer>
  16. {
  17.     NSMutableDictionary *clientDict;
  18. }
  19.  
  20. - (BOOL)hasClient;
  21. @end
  22.